Skip to main content

Departed Facility

The Departed Facility feature allows you to update the status of a collection of shipments in bulk. This feature is useful when you want to update the status of multiple shipments at once after they have been created using the API. It skips the need to update each shipment individually by the scanning of the barcode by Peddler.

info

This feature is only available for carriers who have the Departed Facility feature enabled. If you would like to enable this feature, please contact at [email protected].

danger

Enabling this feature removes the need for scanning the barcode by Peddler. This means that the status of the shipments within the bundle will be updated without any physical verification. Please ensure that you have the necessary checks in place to prevent any misuse of this feature.

How to use the Departed Facility feature

There is a special endpoint that you can use to update the status of multiple shipments at once. This endpoint is called departedFacility. It is a POST request that accepts a list of tracking numbers and updates the status of all the shipments in the list and responds with the count of the number of shipments that were successfully updated.

When the endpoint is called, the status of the shipments is updated to SHIPMENT_ENROUTE_TO_WAREHOUSE. This status indicates that the shipments have left the carrier's facility and are on their way to the Peddler Distribution Centre.

warning

The departedFacility endpoint can only be called when the shipments are in the SHIPMENT_CONFIRMED and SHIPMENT_READY statuses. If the shipments are in any other status, the endpoint will return an error.

Request

An example of a request:

Departed Facility Request
curl --location 'https://alphadev-api.peddler.com/api/Carriers/CARRIED_ID/departedFacility' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YjhAgmCv10GRT74dRdqkNAAu8dSFa8Qf' \
--data '{
"trackingNumbers": [
"P197794809406011111",
"P197794809406011112",
"P197794809406011113",
"P197794809406011114",
"P197794809406011115",
"P197794809406011116"
],
"bundleDepartureId": "BUNDLE_DEPARTURE_ID",
"flags": {
"originHub": "AMSTERDAM_EXAMPLE",
}
}'

Response

Success

The response will be a count of the number of shipments along with the tracking numbers that were successfully updated.

{
"count": 2,
"trackingNumbers": [
"P197794809406011111",
"P197794809406011112",
"P197794809406011113",
"P197794809406011114",
"P197794809406011115",
"P197794809406011116"
]
}
Partial success

If the payload contains both VALID and INVALID tracking numbers, the response will be a count of the number of VALID shipments along with the tracking numbers that were successfully updated.

{
"count": 2,
"trackingNumbers": [
"P197794809406011113",
"P197794809406011114"
]
}

Error

If there are ONLY (SO NO VALID TRACKING NUMBERS AT ALL) trackingNumbers passed in the request that have never been created, the response will be an error message.

{
"error": {
"statusCode": 422,
"name": "no-manifests-found",
"message": "NO MANIFESTS FOUND"
}
}